資料索引
(1) 內建索引
#載入Pandas模組
import pandas as pd
#以列表資料為底,建立Series
pd.Series(列表)
(2)自訂索引
#載入Pandas模組
import pandas as pd
#以列表資料為底,建立Series
pd.Series(列表, index=索引列表)
觀察資料
(1) 資料型態
import pandas as pd
data=pd.Series(列表, index=索引列表)
print(data.dtype)
(2) 資料數量
import pandas as pd
data=pd.Series(列表, index=索引列表)
print(data.size)
(3) 資料索引
import pandas as pd
data=pd.Series(列表, index=索引列表)
print(data.index)